home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-03 | 622 b | 23 lines | [TEXT/MPS ] |
- /*
- File: ChooserPACK.cp
-
- Contains: Implementation of the Chooser's PACK jump table.
-
- */
-
- #include "Chooser.h"
-
- /**************************************************************************************
- Note: Main must get linked at the very beginning of the first file because
- the jump table must be the first entry in the PACK resource. This
- means that no headers that contain linked routines (eg, inlines)
- can be included before this routine.
- **************************************************************************************/
- asm void main(void);
- asm void main(void)
- {
- // Jump Table
- jmp Chooser
- };
-
-